home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / faresets.sql < prev    next >
Text File  |  2000-05-12  |  906b  |  24 lines

  1. /* RCSVER $Id: faresets.sql,v 1.8 1999-11-19 14:04:20-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        faresets.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the faresets table. This table contains definitions
  9. *        of all faresets defined to the system.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE faresets
  13. (
  14.     id    NUMBER(38),    /* ID of this fareset */
  15.     descr    VARCHAR2(20),    /* Description of fareset */
  16.     route    NUMBER(38),    /* Route, or 0 */
  17.     run    NUMBER(38),    /* Run, or 0 */
  18.     fare    NUMBER(38),    /* Default fare for this fareset */
  19.     config_num    NUMBER(38)
  20.         CONSTRAINT ref_faresets1 REFERENCES configset(num)
  21.         ON DELETE CASCADE,
  22.     CONSTRAINT pk_faresets PRIMARY KEY (id, config_num)
  23. );
  24.